home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_10.lha / 7_10 / po_pending.c < prev    next >
Text File  |  1993-08-08  |  523b  |  16 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. include <process.h>
  6. include <debug.h>    /* DELETE */
  7. / Return 1 if the object should be waited for.
  8. / By default say yes and assume that alert() 
  9. / will be called somehow.
  10. nt process_object::pending()
  11.  
  12.    if (debug) /*DELETE*/ cerr << "process_object" << this << "::pending()\n";
  13.    if (debug) /*DELETE*/ cerr << "<<<< process_object" << this << "::pending() <- 1\n";
  14.    return 1;
  15.  
  16.